home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / pc_board / em103.zip / SAMPLE.EM < prev   
Text File  |  1993-02-21  |  4KB  |  76 lines

  1. ;
  2. ; Event Manager Version 1.03 (Shareware) (15 Event Limit)
  3. ; (C)opyright 1993 by Doug Laine of The Philly Exchange - (609) 927-5771
  4. ;
  5. ; Format description:
  6. ;
  7. ; As you can see, any line that begins with a ; will be ignored.  This way
  8. ; you can put notes inside of this file to keep track of what your events
  9. ; will be doing.
  10. ;
  11. ; FILE FORMAT:
  12. ;
  13. ; This first column is used to tell the system what days you want the event
  14. ; to run.  The days are number from 0 - Sunday through 6 - Saturday.  You
  15. ; must include the day number or the event will NOT occurr.
  16. ;
  17. ; The second column is used to point the the line number in the PCBOARD.DAT
  18. ; file that contains the Event Time.  This way, if you have a different 
  19. ; version of PCBoard than 14.5, you will be able to change the line number 
  20. ; of the Event Time.
  21. ;
  22. ; The third column is what will be place in the Event Time line.  This can
  23. ; be anything you want it to be, however, this should only be that time of
  24. ; the event and nothing else!  Also, you must be sure to use the 24 hour
  25. ; format of time.
  26. ;
  27. ; The fourth and column is used to point to the event file that will
  28. ; overwrite the EVENT.SYS file.  This file will contain your new event
  29. ; information.  Basically it is juse another EVENT.SYS file, but will contain
  30. ; this events specific information.  If you use the name NONE, EM will
  31. ; simply update the PCBOARD.DAT file and then internally run EM /NEXT.
  32. ;
  33. ; The fifth column is used to specify whether the event may be slidden
  34. ; if the user is online.  This has only been tested with 14.5, so I can
  35. ; not promise it will work on earlier versions.
  36. ;
  37. ; The sixth (registered versions only) is used for Synchronous event 
  38. ; managment.  You must set this column to either 0 for no synchronous
  39. ; event managment is needed for this event, or 1 for synchronous control.
  40. ; If you set any of these to a 1 you must add additional information about
  41. ; the controls.  These are explained furthur down in this file.
  42. ;
  43. ; The only other addtional information you should be aware of is the fact
  44. ; that the events must be placed in the file in accending order, as the 
  45. ; system will not keep track of them.  In other words, you must be sure
  46. ; to keep your events in the order that they will occurr for the day.
  47. ;
  48. ; PCBOARD.DAT data changes only events
  49. ;
  50. 0      , 35,C:\PCB\HELLO\DAY0,NONE,1,0  ; Welcome file for Sunday
  51. 1      , 35,C:\PCB\HELLO\DAY1,NONE,1,0  ; Welcome file for Monday
  52. 2      , 35,C:\PCB\HELLO\DAY2,NONE,1,0  ; Welcome file for Tuesday
  53. 3      , 35,C:\PCB\HELLO\DAY3,NONE,1,0  ; Welcome file for Wednesday
  54. 4      , 35,C:\PCB\HELLO\DAY4,NONE,1,0  ; Welcome file for Thursday
  55. 5      , 35,C:\PCB\HELLO\DAY5,NONE,1,0  ; Welcome file for Friday
  56. 6      , 35,C:\PCB\HELLO\DAY6,NONE,1,0  ; Welcome file for Saturday
  57. ;
  58. ; Normal events
  59. ;
  60. 0123456,112,00:10,EVENTS\USERBKUP ,0,1  ; Backup the users files.
  61. 0123456,112,00:20,EVENTS\PACKUSRS ,0,1  ; Purge deadbeats
  62. 0123456,112,00:30,EVENTS\MAKELST  ,0,0  ; Makes our ALL files list.
  63. 6      ,112,01:00,EVENTS\PACKMSGS ,1,1  ; Pack Message bases @ 1am Saturdays
  64. 0123456,112,04:00,EVENTS\RIME     ,0,1  ; This is my RIME event.
  65. ;
  66. ; Synced Event Extensions  (Registered version only)
  67. ;
  68. /CONTROL_FILE:F:\PCB\MAIN\CONTROL.EM  ; Tells EM where the control file is.
  69. /CONTROLLER                           ; Says this is the controlling node.
  70.                                       ; Only ONE node may be the controller.
  71. /NODE_COUNT:2                         ; Tells EM how many nodes to wait for.
  72.                                       ; This is only needed on the 
  73.                                       ; controlling node.
  74. /TIMEOUT:15                           ; Maximum wait time before failure
  75.  
  76.